home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
comm
/
mail
/
Mutt089src.lha
/
Mutt-0.89i-AMIGA
/
src
/
reap.pl
< prev
next >
Wrap
Perl Script
|
1998-01-28
|
391b
|
27 lines
#!/usr/bin/perl
#
# A small script to strip out any "illegal" PGP code to make sure it is
# safe for International export.
#
$word = shift;
$illegal = 0;
$count = 0;
while (<>)
{
if (/^#if/)
{
if (/${word}/) { $illegal = 1; }
if ($illegal) { $count++; }
}
elsif ($illegal && /^#endif/)
{
$count--;
if ($count == 0)
{
$illegal = 0;
next;
}
}
print if (! $illegal);
}